home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / QuakeTools / src / libqbuild / nodraw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-11  |  670 b   |  26 lines

  1. #ifndef    DRAW_H
  2. #define    DRAW_H
  3.  
  4. // draw.c
  5.  
  6. //=============================================================================
  7.  
  8. //=============================================================================
  9.  
  10. void Draw_Init(void);
  11. void DrawBrush(struct brush * b);
  12. void DrawLeaf(struct node * l, int color);
  13. void DrawPoint(vec3_t v);
  14. void DrawPortal(struct portal * portal);
  15. void DrawTri(vec3_t p1, vec3_t p2, vec3_t p3);
  16. void DrawWinding(struct winding * w);
  17. void Draw_AddToBounds(vec3_t v);
  18. void Draw_ClearBounds(void);
  19. void Draw_ClearWindow(void);
  20. void Draw_DrawFace(struct visfacet * f);
  21. void Draw_SetBlack(void);
  22. void Draw_SetGrey(void);
  23. void Draw_SetRed(void);
  24.  
  25. #endif
  26.